home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Form1"
- ClientHeight = 930
- ClientLeft = 1800
- ClientTop = 2685
- ClientWidth = 3645
- Height = 1335
- Left = 1740
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- ScaleHeight = 930
- ScaleWidth = 3645
- Top = 2340
- Width = 3765
- Begin CommandButton Command1
- Caption = "Square"
- Default = -1 'True
- Height = 375
- Left = 1920
- TabIndex = 1
- Top = 240
- Width = 1335
- End
- Begin TextBox Text1
- Height = 375
- Left = 360
- TabIndex = 0
- Text = "3"
- Top = 240
- Width = 1215
- End
- Sub Command1_Click ()
- text1.text = Str$(SquareInt(Val(text1.text)))
- End Sub
-